home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
applic
/
ntp
/
acts.zoo
/
sndptr.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-10-14
|
334 b
|
19 lines
void sndptr()
{
#include "nbstime.h"
#ifdef IBMPC
#include <dos.h>
/*
pulses strobe line on printer
note -- only used for IBMPC version. if IBMPC is not
defined, this is a do - nothing
*/
extern int lpadr;
int j;
outportb(lpadr,1);
for(j=0; j<3; j++) ;
outportb(lpadr,0);
#endif
}